home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Magazine / GraphicsCards / StormMesa / Makefile.mgl < prev    next >
Makefile  |  1998-12-15  |  2KB  |  52 lines

  1. #############################################################################
  2. #
  3. #                   Copyright (C) 1996 SciTech Software
  4. #                           All rights reserved.
  5. #
  6. # Descripton:   Generic makefile for the MGL version of Mesa.
  7. #
  8. # $Date:   24 Jun 1997 11:49:50  $ $Author:   KevinO  $
  9. #
  10. #############################################################################
  11.  
  12. # DOS extender dependant flags
  13.  
  14. CFLAGS          += $(DX_CFLAGS) -DNO_GL_MACROS -DPC
  15. ASFLAGS         += $(DX_ASFLAGS)
  16.  
  17. # Name of library and object files required to build it
  18.  
  19. .IF $(BUILD_DLL)
  20. DLLFILE         = mesagl$D
  21. LIBFILE         = mesagl$L
  22. .ELSE
  23. .IF $(STKCALL)
  24. LIBFILE         = smesagl$L
  25. .ELSE
  26. LIBFILE         = mesagl$L
  27. .ENDIF
  28. .ENDIF
  29. LIBCLEAN        = mesagl.lib mesagl.a smesagl.lib
  30.  
  31. CORE_OBJS       = accum$O alpha$O alphabuf$O api$O attrib$O bitmap$O        \
  32.                   blend$O clip$O context$O copypix$O depth$O                \
  33.                   dlist$O drawpix$O enable$O eval$O feedback$O fog$O        \
  34.                   get$O image$O light$O lines$O logic$O masking$O           \
  35.                   matrix$O misc$O pb$O pixel$O points$O pointers$O          \
  36.                   polygon$O rastpos$O readpix$O shade$O scissor$O           \
  37.                   span$O stencil$O teximage$O texobj$O texture$O triangle$O \
  38.                   varray$O winpos$O vbfill$O vbrender$O vbxform$O xform$O   \
  39.                   cmesa$O fxmesa$O mmath$O rect$O texstate$O quads$O        \
  40.                   vb$O svgamesa$O nurbscrv$O nurbssrf$O nurbsutl$O nurbs$O         
  41.  
  42. DRIVER_OBJS     = mmesa8$O mmesa16$O mmesa24$O mmesa32$O halftone$O mglmesa$O 
  43.  
  44. OBJECTS         = $(CORE_OBJS) $(DRIVER_OBJS)
  45.  
  46. # Define the list of object files to create dependency information for
  47.  
  48. DEPEND_OBJ      = $(OBJECTS)
  49.  
  50. .INCLUDE: "$(SCITECH)\makedefs\common.mk"
  51.  
  52.